4045f68a0a1367d37af8003e6fdc5f7428ca5b5b,maven-compiler-plugin/src/main/java/org/apache/maven/plugin/AbstractCompilerMojo.java,AbstractCompilerMojo,execute,#,293

Before Change



            getLog().debug( "Source roots:" );

            for ( Iterator it = getCompileSourceRoots().iterator(); it.hasNext(); )
            {
                String root = (String) it.next();

                getLog().debug( " " + root );
            }

After Change



            getLog().debug( "Source roots:" );

            for ( String root : getCompileSourceRoots() )
            {
                getLog().debug( " " + root );
            }